{% extends 'base.html' %} {% block title %}Attendance List{% endblock %} {% block content %}
| Roll | Name | Status |
|---|---|---|
| {{ r.student.roll_number }} | {{ r.student.name }} | {% if r.status == 'Present' %} Present {% else %} Absent {% endif %} |
| No attendance records for this date. | ||